"Grid hover effect( FAN )"
Bootstrap 3.0.0 Snippet by Ashwani Rawat

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="wrapper">
<div class="main">
<div class="fan-border">
<div class="fan-circle"><div class="flip-head">
<div class="fan-flip"></div>
<div class="fan-flip Right"></div>
<div class="fan-flip left"></div>
</div></div>
<div class="fan-bigcircle"></div>
<div class="main-storm">
<div class="stormy"></div>
<div class="stormy one"></div>
<div class="stormy two"></div>
<div class="stormy three"></div>
<div class="stormy four"></div>
<div class="stormy five"></div>
<div class="stormy six"></div>
<div class="stormy seven"></div>
<div class="stormy eight"></div>
<div class="stormy nine"></div>
<div class="stormy ten"></div>
<div class="stormy eleven"></div>
<div class="stormy twelve"></div>
<div class="stormy thirteen"></div>
<div class="stormy fourteen"></div>
<div class="stormy fifteen"></div>
<div class="stormy sixteen"></div>
<div class="stormy eighteen"></div>
<div class="stormy nineteen"></div>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
*{
padding:0;
margin:0
}
.main{ float: left;
width: 100%;
position: relative;}
.fan-border{ border-radius:50%; width:300px; height:300px; border:6px solid #0f86b3; margin:auto;}
.logo-name{
background: #fff;
color: #806e6e;
width: 100px;
height: 100px;
border-radius: 50%;
position: absolute;
top: 100px;
left: 45.9%;
text-align: center;
font-weight: 600;
font-size: 11px;
box-shadow: 1px -2px 7px 2px #b3b3b3;
z-index:99;
line-height: 100px;
}
.fan-flip{
background: rgb(15, 134, 179);
width: 50px;
height: 85px;
position: absolute;
top: -16px;
left: 36%;
z-index: 5;
border-radius: 0 0 10px 10px;
box-shadow: 0px 1px 20px #000;
}
.cog {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
$(document).ready(function(){
$(".on").click(function(){
$(".flip-head").addClass("cog");
});
});
$(document).ready(function(){
$(".of").click(function(){
$(".flip-head").removeClass("cog");
});
});
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: